/* ===========
   GLOBAL BASE
   =========== */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f9fafb;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1, h2, h3 {
  color: #462bf8;
  font-weight: 600;
}

p, li {
  color: #0099a1;
}

ul {
  list-style: disc inside;
  margin: 10px 0 20px;
  padding-left: 20px;
}

strong {
  color: #827f7f;
}

/* ===========
   POLICY WRAPPER
   =========== */
.policy-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ===========
   EACH POLICY SECTION
   =========== */
.policy-section {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  padding: 40px 35px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

/* ===========
   HEADER STYLES
   =========== */
.policy-header {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.policy-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-style: italic;
}

/* ===========
   CONTENT AREA
   =========== */
.policy-content h2 {
  font-size: 1.3rem;
  color: #0a2540;
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
}

.policy-content h2::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #0a2540;
  border-radius: 2px;
}

.policy-content p {
  margin-bottom: 16px;
  color: #333;
  font-size: 0.98rem;
}

/* ===========
   LIST STYLING
   =========== */
.policy-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===========
   RESPONSIVENESS
   =========== */
@media (max-width: 768px) {
  .policy-wrapper {
    padding: 0 15px;
  }

  .policy-section {
    padding: 25px 20px;
  }

  .policy-header {
    font-size: 1.7rem;
  }

  .policy-content h2 {
    font-size: 1.15rem;
  }
}
